home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / agrep / Docs / README < prev    next >
Text File  |  1991-06-12  |  2KB  |  34 lines

  1. This directory contains version 1.0 of agrep - a tool for
  2. approximate text searches.
  3. The tar file also contains a postscript file of a technical report describing
  4. the algorithm and its implementation (agrep.ps), manual pages
  5. (agrep.1), and the usual copyright statement (COPYRIGHT).
  6. agrep is a tool for text searching with errors.
  7. Its use is similar to egrep (or grep or fgrep), but it is much more
  8. general.  It is also usually faster than egrep (but slower than 
  9. GNU egrep or any Boyer-Moore type matching).
  10. It is based on an entirely different algorithm.
  11. The two most significant features of agrep that are not supported by
  12. the grep family are 
  13. 1) the ability to search for approximate patterns;
  14.         for example, "agrep -2 homogenos foo" will find homogeneous as well 
  15.         as any other word that can be obtained from homogenos with at most 
  16.         2 substitutions, insertions, or deletions.
  17. 2) agrep is record oriented rather than just line oriented;  a record
  18. is by default a line, but it can be user defined;
  19.         for example, "agrep -d '^From ' 'breakdown; arpanet' mbox"
  20.         outputs all mail messages (the pattern '^From ' separates mail messages
  21.         in a mail file) that contain breakdown message about arpanet.
  22.  
  23. This is the first version of agrep.  Expect some bugs, especially with
  24. complicated patterns and a combination of options.
  25. Please mail bug reports (or any other comments) 
  26. to sw@cs.arizona.edu or to udi@cs.arizona.edu.
  27.  
  28. We would appreciate if users notify us (at the address above)
  29. of any extensions, improvements, or interesting uses of this software.
  30.  
  31. June 11, 1991.
  32.  
  33.  
  34.